home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / OutOfPhase1.01Source / OutOfPhase Folder / TrackBackgroundSaver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-01  |  973 b   |  37 lines  |  [TEXT/KAHL]

  1. /* TrackBackgroundSaver.h */
  2.  
  3. #ifndef Included_TrackBackgroundSaver_h
  4. #define Included_TrackBackgroundSaver_h
  5.  
  6. /* TrackBackgroundSaver module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* MainWindowStuff */
  12. /* BufferedFileInput */
  13. /* BufferedFileOutput */
  14. /* Memory */
  15. /* Array */
  16. /* TrackObject */
  17.  
  18. #include "MainWindowStuff.h"
  19.  
  20. /* forwards */
  21. struct TrackObjectRec;
  22. struct BufferedInputRec;
  23. struct BufferedOutputRec;
  24. struct ArrayRec;
  25.  
  26. /* save the information describing which tracks are in the background (greyed) */
  27. FileLoadingErrors        SaveBackgroundTrackInfo(struct TrackObjectRec* TrackObj,
  28.                                             struct BufferedOutputRec* Output,
  29.                                             struct ArrayRec* OrderedListOfAllTracks);
  30.  
  31. /* load information describing which tracks are in the background */
  32. FileLoadingErrors        LoadBackgroundTrackInfo(struct TrackObjectRec* TrackObj,
  33.                                             struct BufferedInputRec* Input,
  34.                                             struct ArrayRec* OrderedListOfAllTracks);
  35.  
  36. #endif
  37.